home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / UI / ArbUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  1.2 KB  |  54 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ArbUtils.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    xxx put writers here xxx
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <2>     5/25/95    jpa        List.h --> LinkList.h [1253324]
  13.          <1>     9/26/94    RR        first checked in
  14.  
  15.     To Do:
  16.     In Progress:
  17. */
  18.  
  19. #ifndef _ARBUTILS_
  20. #define _ARBUTILS_
  21.  
  22. #ifndef _ODTYPES_
  23. #include "ODTypes.h"
  24. #endif
  25.  
  26. #ifndef _LINKLIST_
  27. #include <LinkList.h>
  28. #endif
  29.  
  30. //=====================================================================================
  31. // Classes defined in this interface
  32. //=====================================================================================
  33.  
  34. class FocusLink;
  35.  
  36. //=====================================================================================
  37. // Classes used by this interface
  38. //=====================================================================================
  39.  
  40.  
  41.  
  42. //======================================================================================
  43. // Class FocusLink
  44. //======================================================================================
  45.  
  46. class FocusLink : public Link {
  47.     public:
  48.         FocusLink(ODTypeToken focus);
  49.         ~FocusLink();
  50.             
  51.         ODTypeToken         fFocus;
  52. };
  53.  
  54. #endif // _ARBUTILS_